home *** CD-ROM | disk | FTP | other *** search
/ The Trig Explorer / The Trig Explorer.iso / mac / Explorer / START.dxr / 00096.ls < prev    next >
Encoding:
Text File  |  1998-07-22  |  348 b   |  18 lines

  1. on mouseUp
  2.   global Exercises
  3.   if Exercises = 1 then
  4.     put "0" into field "Exercises"
  5.     set Exercises to 0
  6.     set the castNum of sprite 2 to cast "Disabled"
  7.   else
  8.     put "1" into field "Exercises"
  9.     set Exercises to 1
  10.     set the castNum of sprite 2 to cast "Enabled"
  11.   end if
  12.   updateStage()
  13. end
  14.  
  15. on mouseDown
  16.   puppetSound("click")
  17. end
  18.